home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 19 / CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso / CUCD / Online / MiamiSDK / netinclude / libraries / miami.h next >
Encoding:
C/C++ Source or Header  |  1997-12-04  |  604 b   |  29 lines

  1. #ifndef  LIBRARIES_MIAMI_H
  2. #define  LIBRARIES_MIAMI_H
  3.  
  4. /*
  5. **    $VER: libraries/miami.h 2.0 (10.07.97)
  6. **
  7. **    C prototypes. For use with 32 bit integers only.
  8. **
  9. **    (C) Copyright 1997 Nordic Global Inc.
  10. **        All Rights Reserved
  11. */
  12.  
  13. struct MiamiPFBuffer {
  14.     unsigned long flags;            /* currently unused */
  15.     unsigned char *data;
  16.     unsigned long length;
  17.     unsigned char *name;
  18.     unsigned char itype;            /* interface type MIAMIPFBIT_... */
  19.     unsigned char ptype;            /* packet type MIAMIPFBPT_... */
  20. };
  21.  
  22. #define MIAMIPFBIT_LOOP        0
  23. #define MIAMIPFBIT_BUILTIN    1
  24.  
  25. #define MIAMIPFBPT_IP        0
  26. #define MIAMIPFBPT_ARP        1
  27.  
  28. #endif
  29.